Special:Log and the logging table -- unified logging scariness!
[lhc/web/wiklou.git] / languages / Language.php
1 <?php
2 if( defined( 'MEDIAWIKI' ) ) {
3
4 #
5 # In general you should not make customizations in these language files
6 # directly, but should use the MediaWiki: special namespace to customize
7 # user interface messages through the wiki.
8 # See http://meta.wikipedia.org/wiki/MediaWiki_namespace
9 #
10 # NOTE TO TRANSLATORS: Do not copy this whole file when making translations!
11 # A lot of common constants and a base class with inheritable methods are
12 # defined here, which should not be redefined. See the other LanguageXx.php
13 # files for examples.
14 #
15
16 #--------------------------------------------------------------------------
17 # Language-specific text
18 #--------------------------------------------------------------------------
19
20 # The names of the namespaces can be set here, but the numbers
21 # are magical, so don't change or move them! The Namespace class
22 # encapsulates some of the magic-ness.
23 #
24
25 if($wgMetaNamespace === FALSE)
26 $wgMetaNamespace = str_replace( ' ', '_', $wgSitename );
27
28 /* private */ $wgNamespaceNamesEn = array(
29 NS_MEDIA => 'Media',
30 NS_SPECIAL => 'Special',
31 NS_MAIN => '',
32 NS_TALK => 'Talk',
33 NS_USER => 'User',
34 NS_USER_TALK => 'User_talk',
35 NS_WIKIPEDIA => $wgMetaNamespace,
36 NS_WIKIPEDIA_TALK => $wgMetaNamespace . '_talk',
37 NS_IMAGE => 'Image',
38 NS_IMAGE_TALK => 'Image_talk',
39 NS_MEDIAWIKI => 'MediaWiki',
40 NS_MEDIAWIKI_TALK => 'MediaWiki_talk',
41 NS_TEMPLATE => 'Template',
42 NS_TEMPLATE_TALK => 'Template_talk',
43 NS_HELP => 'Help',
44 NS_HELP_TALK => 'Help_talk',
45 NS_CATEGORY => 'Category',
46 NS_CATEGORY_TALK => 'Category_talk'
47 );
48
49 /* private */ $wgDefaultUserOptionsEn = array(
50 'quickbar' => 1, 'underline' => 1, 'hover' => 1,
51 'cols' => 80, 'rows' => 25, 'searchlimit' => 20,
52 'contextlines' => 5, 'contextchars' => 50,
53 'skin' => $wgDefaultSkin, 'math' => 1, 'rcdays' => 7, 'rclimit' => 50,
54 'highlightbroken' => 1, 'stubthreshold' => 0,
55 'previewontop' => 1, 'editsection'=>1,'editsectiononrightclick'=>0, 'showtoc'=>1,
56 'showtoolbar' =>1,
57 'date' => 0
58 );
59
60 /* private */ $wgQuickbarSettingsEn = array(
61 'None', 'Fixed left', 'Fixed right', 'Floating left'
62 );
63
64 /* private */ $wgSkinNamesEn = array(
65 'standard' => 'Classic',
66 'nostalgia' => 'Nostalgia',
67 'cologneblue' => 'Cologne Blue',
68 'davinci' => 'DaVinci',
69 'mono' => 'Mono',
70 'monobook' => 'MonoBook',
71 'myskin' => 'MySkin',
72 'chick' => 'Chick'
73 );
74
75 define( 'MW_MATH_PNG', 0 );
76 define( 'MW_MATH_SIMPLE', 1 );
77 define( 'MW_MATH_HTML', 2 );
78 define( 'MW_MATH_SOURCE', 3 );
79 define( 'MW_MATH_MODERN', 4 );
80 define( 'MW_MATH_MATHML', 5 );
81
82 # Validation types
83 $wgValidationTypesEn = array (
84 '0' => "Style|Awful|Awesome|5",
85 '1' => "Legal|Illegal|Legal|5",
86 '2' => "Completeness|Stub|Extensive|5",
87 '3' => "Facts|Wild guesses|Solid as a rock|5",
88 '4' => "Suitable for 1.0 (paper)|No|Yes|2",
89 '5' => "Suitable for 1.0 (CD)|No|Yes|2"
90 );
91
92 /* private */ $wgMathNamesEn = array(
93 MW_MATH_PNG => 'mw_math_png',
94 MW_MATH_SIMPLE => 'mw_math_simple',
95 MW_MATH_HTML => 'mw_math_html',
96 MW_MATH_SOURCE => 'mw_math_source',
97 MW_MATH_MODERN => 'mw_math_modern',
98 MW_MATH_MATHML => 'mw_math_mathml'
99 );
100
101 # Whether to use user or default setting in Language::date()
102 define( 'MW_DATE_DEFAULT', false );
103 define( 'MW_DATE_USER_FORMAT', true );
104
105 /* private */ $wgDateFormatsEn = array(
106 'No preference',
107 'January 15, 2001',
108 '15 January 2001',
109 '2001 January 15',
110 '2001-01-15'
111 );
112
113 /* private */ $wgUserTogglesEn = array(
114 'hover',
115 'underline',
116 'highlightbroken',
117 'justify',
118 'hideminor',
119 'usenewrc',
120 'numberheadings',
121 'showtoolbar',
122 'editondblclick',
123 'editsection',
124 'editsectiononrightclick',
125 'showtoc',
126 'rememberpassword',
127 'editwidth',
128 'watchdefault',
129 'minordefault',
130 'previewontop',
131 'nocache',
132 );
133
134 /* private */ $wgBookstoreListEn = array(
135 'AddALL' => 'http://www.addall.com/New/Partner.cgi?query=$1&type=ISBN',
136 'PriceSCAN' => 'http://www.pricescan.com/books/bookDetail.asp?isbn=$1',
137 'Barnes & Noble' => 'http://shop.barnesandnoble.com/bookSearch/isbnInquiry.asp?isbn=$1',
138 'Amazon.com' => 'http://www.amazon.com/exec/obidos/ISBN=$1'
139 );
140
141 # Read language names
142 global $wgLanguageNames;
143 require_once( 'Names.php' );
144
145 $wgLanguageNamesEn =& $wgLanguageNames;
146
147
148 /* private */ $wgWeekdayNamesEn = array(
149 'sunday', 'monday', 'tuesday', 'wednesday', 'thursday',
150 'friday', 'saturday'
151 );
152
153
154 /* private */ $wgMonthNamesEn = array(
155 'january', 'february', 'march', 'april', 'may_long', 'june',
156 'july', 'august', 'september', 'october', 'november',
157 'december'
158 );
159 /* private */ $wgMonthNamesGenEn = array(
160 'january-gen', 'february-gen', 'march-gen', 'april-gen', 'may-gen', 'june-gen',
161 'july-gen', 'august-gen', 'september-gen', 'october-gen', 'november-gen',
162 'december-gen'
163 );
164
165 /* private */ $wgMonthAbbreviationsEn = array(
166 'jan', 'feb', 'mar', 'apr', 'may', 'jun', 'jul', 'aug',
167 'sep', 'oct', 'nov', 'dec'
168 );
169
170 # Note to translators:
171 # Please include the English words as synonyms. This allows people
172 # from other wikis to contribute more easily.
173 #
174 /* private */ $wgMagicWordsEn = array(
175 # ID CASE SYNONYMS
176 MAG_REDIRECT => array( 0, '#redirect' ),
177 MAG_NOTOC => array( 0, '__NOTOC__' ),
178 MAG_FORCETOC => array( 0, '__FORCETOC__' ),
179 MAG_TOC => array( 0, '__TOC__' ),
180 MAG_NOEDITSECTION => array( 0, '__NOEDITSECTION__' ),
181 MAG_START => array( 0, '__START__' ),
182 MAG_CURRENTMONTH => array( 1, 'CURRENTMONTH' ),
183 MAG_CURRENTMONTHNAME => array( 1, 'CURRENTMONTHNAME' ),
184 MAG_CURRENTDAY => array( 1, 'CURRENTDAY' ),
185 MAG_CURRENTDAYNAME => array( 1, 'CURRENTDAYNAME' ),
186 MAG_CURRENTYEAR => array( 1, 'CURRENTYEAR' ),
187 MAG_CURRENTTIME => array( 1, 'CURRENTTIME' ),
188 MAG_NUMBEROFARTICLES => array( 1, 'NUMBEROFARTICLES' ),
189 MAG_CURRENTMONTHNAMEGEN => array( 1, 'CURRENTMONTHNAMEGEN' ),
190 MAG_PAGENAME => array( 1, 'PAGENAME' ),
191 MAG_PAGENAMEE => array( 1, 'PAGENAMEE' ),
192 MAG_NAMESPACE => array( 1, 'NAMESPACE' ),
193 MAG_MSG => array( 0, 'MSG:' ),
194 MAG_SUBST => array( 0, 'SUBST:' ),
195 MAG_MSGNW => array( 0, 'MSGNW:' ),
196 MAG_END => array( 0, '__END__' ),
197 MAG_IMG_THUMBNAIL => array( 1, 'thumbnail', 'thumb' ),
198 MAG_IMG_RIGHT => array( 1, 'right' ),
199 MAG_IMG_LEFT => array( 1, 'left' ),
200 MAG_IMG_NONE => array( 1, 'none' ),
201 MAG_IMG_WIDTH => array( 1, '$1px' ),
202 MAG_IMG_CENTER => array( 1, 'center', 'centre' ),
203 MAG_IMG_FRAMED => array( 1, 'framed', 'enframed', 'frame' ),
204 MAG_INT => array( 0, 'INT:' ),
205 MAG_SITENAME => array( 1, 'SITENAME' ),
206 MAG_NS => array( 0, 'NS:' ),
207 MAG_LOCALURL => array( 0, 'LOCALURL:' ),
208 MAG_LOCALURLE => array( 0, 'LOCALURLE:' ),
209 MAG_SERVER => array( 0, 'SERVER' )
210 );
211
212 #-------------------------------------------------------------------
213 # Default messages
214 #-------------------------------------------------------------------
215 # Allowed characters in keys are: A-Z, a-z, 0-9, underscore (_) and
216 # hyphen (-). If you need more characters, you may be able to change
217 # the regex in MagicWord::initRegex
218
219 # NOTE: To turn off "Current Events" in the sidebar,
220 # set "currentevents" => ""
221
222 # NOTE: To turn off "Disclaimers" in the title links,
223 # set "disclaimers" => ""
224
225 # NOTE: To turn off "Community portal" in the title links,
226 # set "portal" => ""
227
228
229 # required for copyrightwarning
230 global $wgRightsText;
231
232 /* private */ $wgAllMessagesEn = array(
233 'special_version_prefix' => '&nbsp;',
234 'special_version_postfix' => '&nbsp;',
235 # User preference toggles
236 'tog-hover' => 'Show hoverbox over wiki links',
237 'tog-underline' => 'Underline links',
238 'tog-highlightbroken' => 'Format broken links <a href="" class="new">like this</a> (alternative: like this<a href="" class="internal">?</a>).',
239 'tog-justify' => 'Justify paragraphs',
240 'tog-hideminor' => 'Hide minor edits in recent changes',
241 'tog-usenewrc' => 'Enhanced recent changes (not for all browsers)',
242 'tog-numberheadings' => 'Auto-number headings',
243 'tog-showtoolbar'=>'Show edit toolbar',
244 'tog-editondblclick' => 'Edit pages on double click (JavaScript)',
245 'tog-editsection'=>'Enable section editing via [edit] links',
246 'tog-editsectiononrightclick'=>'Enable section editing by right clicking<br /> on section titles (JavaScript)',
247 'tog-showtoc'=>'Show table of contents<br />(for pages with more than 3 headings)',
248 'tog-rememberpassword' => 'Remember password across sessions',
249 'tog-editwidth' => 'Edit box has full width',
250 'tog-watchdefault' => 'Add pages you edit to your watchlist',
251 'tog-minordefault' => 'Mark all edits minor by default',
252 'tog-previewontop' => 'Show preview before edit box and not after it',
253 'tog-nocache' => 'Disable page caching',
254
255 # dates
256 'sunday' => 'Sunday',
257 'monday' => 'Monday',
258 'tuesday' => 'Tuesday',
259 'wednesday' => 'Wednesday',
260 'thursday' => 'Thursday',
261 'friday' => 'Friday',
262 'saturday' => 'Saturday',
263 'january' => 'January',
264 'february' => 'February',
265 'march' => 'March',
266 'april' => 'April',
267 'may_long' => 'May',
268 'june' => 'June',
269 'july' => 'July',
270 'august' => 'August',
271 'september' => 'September',
272 'october' => 'October',
273 'november' => 'November',
274 'december' => 'December',
275 'jan' => 'Jan',
276 'feb' => 'Feb',
277 'mar' => 'Mar',
278 'apr' => 'Apr',
279 'may' => 'May',
280 'jun' => 'Jun',
281 'jul' => 'Jul',
282 'aug' => 'Aug',
283 'sep' => 'Sep',
284 'oct' => 'Oct',
285 'nov' => 'Nov',
286 'dec' => 'Dec',
287 # Bits of text used by many pages:
288 #
289 'categories' => 'Categories',
290 'category' => 'category',
291 'category_header' => 'Articles in category "$1"',
292 'subcategories' => 'Subcategories',
293
294
295 'linktrail' => '/^([a-z]+)(.*)$/sD',
296 'mainpage' => 'Main Page',
297 'mainpagetext' => 'Wiki software successfully installed.',
298 "mainpagedocfooter" => "Please see [http://meta.wikipedia.org/wiki/MediaWiki_i18n documentation on customizing the interface]
299 and the [http://meta.wikipedia.org/wiki/MediaWiki_User%27s_Guide User's Guide] for usage and configuration help.",
300 'portal' => 'Community portal',
301 'portal-url' => '{{ns:4}}:Community Portal',
302 'about' => 'About',
303 "aboutwikipedia" => "About {{SITENAME}}",
304 "aboutpage" => "{{ns:4}}:About",
305 'article' => 'Content page',
306 'help' => 'Help',
307 "helppage" => "{{ns:12}}:Contents",
308 "wikititlesuffix" => "{{SITENAME}}",
309 "bugreports" => "Bug reports",
310 "bugreportspage" => "{{ns:4}}:Bug_reports",
311 'sitesupport' => 'Donations', # Set a URL in $wgSiteSupportPage in LocalSettings.php
312 'faq' => 'FAQ',
313 "faqpage" => "{{ns:4}}:FAQ",
314 "edithelp" => "Editing help",
315 "newwindow" => "(opens in new window)",
316 "edithelppage" => "{{ns:12}}:Editing",
317 'cancel' => 'Cancel',
318 'qbfind' => 'Find',
319 'qbbrowse' => 'Browse',
320 'qbedit' => 'Edit',
321 'qbpageoptions' => 'This page',
322 'qbpageinfo' => 'Context',
323 'qbmyoptions' => 'My pages',
324 'qbspecialpages' => 'Special pages',
325 'moredotdotdot' => 'More...',
326 'mypage' => 'My page',
327 'mytalk' => 'My talk',
328 'anontalk' => 'Talk for this IP',
329 'navigation' => 'Navigation',
330 'currentevents' => 'Current events',
331 'disclaimers' => 'Disclaimers',
332 "disclaimerpage" => "{{ns:4}}:General_disclaimer",
333 "errorpagetitle" => "Error",
334 "returnto" => "Return to $1.",
335 "fromwikipedia" => "From {{SITENAME}}",
336 'whatlinkshere' => 'Pages that link here',
337 'help' => 'Help',
338 'search' => 'Search',
339 'go' => 'Go',
340 "history" => 'Page history',
341 'history_short' => 'History',
342 'info_short' => 'Information',
343 'printableversion' => 'Printable version',
344 'edit' => 'Edit',
345 'editthispage' => 'Edit this page',
346 'delete' => 'Delete',
347 "deletethispage" => "Delete this page",
348 "undelete_short" => "Undelete $1 edits",
349 'protect' => 'Protect',
350 'protectthispage' => 'Protect this page',
351 'unprotect' => 'Unprotect',
352 'unprotectthispage' => 'Unprotect this page',
353 'newpage' => 'New page',
354 'talkpage' => 'Discuss this page',
355 'specialpage' => 'Special Page',
356 'personaltools' => 'Personal tools',
357 'postcomment' => 'Post a comment',
358 'addsection' => '+',
359 'articlepage' => 'View content page',
360 'subjectpage' => 'View subject', # For compatibility
361 'talk' => 'Discussion',
362 'toolbox' => 'Toolbox',
363 'userpage' => 'View user page',
364 'wikipediapage' => 'View project page',
365 'imagepage' => 'View image page',
366 'viewtalkpage' => 'View discussion',
367 'otherlanguages' => 'Other languages',
368 'redirectedfrom' => '(Redirected from $1)',
369 'lastmodified' => 'This page was last modified $1.',
370 'viewcount' => 'This page has been accessed $1 times.',
371 'copyright' => 'Content is available under $1.',
372 'poweredby' => "{{SITENAME}} is powered by [http://www.mediawiki.org/ MediaWiki], an open source wiki engine.",
373 'printsubtitle' => "(From {{SERVER}})",
374 'protectedpage' => 'Protected page',
375 'administrators' => "{{ns:4}}:Administrators",
376 'sysoptitle' => 'Sysop access required',
377 'sysoptext' => "The action you have requested can only be
378 performed by users with \"sysop\" status.
379 See $1.",
380 'developertitle' => 'Developer access required',
381 "developertext" => "The action you have requested can only be
382 performed by users with \"developer\" status.
383 See $1.",
384 'bureaucrattitle' => 'Bureaucrat access required',
385 "bureaucrattext" => "The action you have requested can only be
386 performed by sysops with \"bureaucrat\" status.",
387 'nbytes' => '$1 bytes',
388 'go' => 'Go',
389 'ok' => 'OK',
390 'sitetitle' => "{{SITENAME}}",
391 'pagetitle' => "$1 - {{SITENAME}}",
392 'sitesubtitle' => 'The Free Encyclopedia', # FIXME
393 'retrievedfrom' => "Retrieved from \"$1\"",
394 'newmessages' => "You have $1.",
395 'newmessageslink' => 'new messages',
396 'editsection'=>'edit',
397 'toc' => 'Table of contents',
398 'showtoc' => 'show',
399 'hidetoc' => 'hide',
400 'thisisdeleted' => "View or restore $1?",
401 'restorelink' => "$1 deleted edits",
402 'feedlinks' => 'Feed:',
403 'sitenotice' => '', # the equivalent to wgSiteNotice
404
405 # Short words for each namespace, by default used in the 'article' tab in monobook
406 'nstab-main' => 'Article',
407 'nstab-user' => 'User page',
408 'nstab-media' => 'Media',
409 'nstab-special' => 'Special',
410 'nstab-wp' => 'About',
411 'nstab-image' => 'Image',
412 'nstab-mediawiki' => 'Message',
413 'nstab-template' => 'Template',
414 'nstab-help' => 'Help',
415 'nstab-category' => 'Category',
416
417 # Main script and global functions
418 #
419 'nosuchaction' => 'No such action',
420 'nosuchactiontext' => 'The action specified by the URL is not
421 recognized by the wiki',
422 'nosuchspecialpage' => 'No such special page',
423 'nospecialpagetext' => 'You have requested a special page that is not
424 recognized by the wiki.',
425
426 # General errors
427 #
428 'error' => 'Error',
429 'databaseerror' => 'Database error',
430 'dberrortext' => "A database query syntax error has occurred.
431 This may indicate a bug in the software.
432 The last attempted database query was:
433 <blockquote><tt>$1</tt></blockquote>
434 from within function \"<tt>$2</tt>\".
435 MySQL returned error \"<tt>$3: $4</tt>\".",
436 'dberrortextcl' => "A database query syntax error has occurred.
437 The last attempted database query was:
438 \"$1\"
439 from within function \"$2\".
440 MySQL returned error \"$3: $4\".\n",
441 'noconnect' => 'Sorry! The wiki is experiencing some technical difficulties, and cannot contact the database server. <br />
442 $1',
443 'nodb' => "Could not select database $1",
444 'cachederror' => 'The following is a cached copy of the requested page, and may not be up to date.',
445 'readonly' => 'Database locked',
446 'enterlockreason' => 'Enter a reason for the lock, including an estimate
447 of when the lock will be released',
448 'readonlytext' => "The database is currently locked to new
449 entries and other modifications, probably for routine database maintenance,
450 after which it will be back to normal.
451 The administrator who locked it offered this explanation:
452 <p>$1",
453 'missingarticle' => "The database did not find the text of a page
454 that it should have found, named \"$1\".
455
456 <p>This is usually caused by following an outdated diff or history link to a
457 page that has been deleted.
458
459 <p>If this is not the case, you may have found a bug in the software.
460 Please report this to an administrator, making note of the URL.",
461 'internalerror' => 'Internal error',
462 'filecopyerror' => "Could not copy file \"$1\" to \"$2\".",
463 'filerenameerror' => "Could not rename file \"$1\" to \"$2\".",
464 'filedeleteerror' => "Could not delete file \"$1\".",
465 'filenotfound' => "Could not find file \"$1\".",
466 'unexpected' => "Unexpected value: \"$1\"=\"$2\".",
467 'formerror' => 'Error: could not submit form',
468 'badarticleerror' => 'This action cannot be performed on this page.',
469 'cannotdelete' => 'Could not delete the page or image specified. (It may have already been deleted by someone else.)',
470 'badtitle' => 'Bad title',
471 'badtitletext' => "The requested page title was invalid, empty, or
472 an incorrectly linked inter-language or inter-wiki title.",
473 'perfdisabled' => 'Sorry! This feature has been temporarily disabled
474 because it slows the database down to the point that no one can use
475 the wiki.',
476 'perfdisabledsub' => "Here's a saved copy from $1:", # obsolete?
477 'perfcached' => 'The following data is cached and may not be completely up to date:',
478 'wrong_wfQuery_params' => "Incorrect parameters to wfQuery()<br />
479 Function: $1<br />
480 Query: $2
481 ",
482 'viewsource' => 'View source',
483 'protectedtext' => "This page has been locked to prevent editing; there are
484 a number of reasons why this may be so, please see
485 [[{{ns:4}}:Protected page]].
486
487 You can view and copy the source of this page:",
488 'seriousxhtmlerrors' => 'There were serious xhtml markup errors detected by tidy.',
489
490 # Login and logout pages
491 #
492 "logouttitle" => 'User logout',
493 "logouttext" => "You are now logged out.
494 You can continue to use {{SITENAME}} anonymously, or you can log in
495 again as the same or as a different user. Note that some pages may
496 continue to be displayed as if you were still logged in, until you clear
497 your browser cache\n",
498
499 'welcomecreation' => "== Welcome, $1! ==
500
501 Your account has been created. Don't forget to change your {{SITENAME}} preferences.",
502
503 'loginpagetitle' => 'User login',
504 'yourname' => 'Your user name',
505 'yourpassword' => 'Your password',
506 'yourpasswordagain' => 'Retype password',
507 'newusersonly' => ' (new users only)',
508 'remembermypassword' => 'Remember my password across sessions.',
509 'loginproblem' => '<b>There has been a problem with your login.</b><br />Try again!',
510 'alreadyloggedin' => "<font color=red><b>User $1, you are already logged in!</b></font><br />\n",
511
512 'login' => 'Log in',
513 'loginprompt' => "You must have cookies enabled to log in to {{SITENAME}}.",
514 'userlogin' => 'Create an account or log in',
515 'logout' => 'Log out',
516 'userlogout' => 'Log out',
517 'notloggedin' => 'Not logged in',
518 'createaccount' => 'Create new account',
519 'createaccountmail' => 'by email',
520 'badretype' => 'The passwords you entered do not match.',
521 'userexists' => 'The user name you entered is already in use. Please choose a different name.',
522 'youremail' => 'Your email*',
523 'yourrealname' => 'Your real name*',
524 'yournick' => 'Your nickname (for signatures)',
525 'emailforlost' => "Fields marked with a star (*) are optional. Storing an email address enables people to contact you through the website without you having to reveal your
526 email address to them, and it can be used to send you a new password if you forget it.<br /><br />Your real name, if you choose to provide it, will be used for giving you attribution for your work.",
527 'prefs-help-userdata' => '* <strong>Real name</strong> (optional): if you choose to provide it this will be used for giving you attribution for your work.<br/>
528 * <strong>Email</strong> (optional): Enables people to contact you through the website without you having to reveal your
529 email address to them, and it can be used to send you a new password if you forget it.',
530 'loginerror' => 'Login error',
531 'nocookiesnew' => "The user account was created, but you are not logged in. {{SITENAME}} uses cookies to log in users. You have cookies disabled. Please enable them, then log in with your new username and password.",
532 "nocookieslogin" => "{{SITENAME}} uses cookies to log in users. You have cookies disabled. Please enable them and try again.",
533 'noname' => 'You have not specified a valid user name.',
534 'loginsuccesstitle' => 'Login successful',
535 'loginsuccess' => "You are now logged in to {{SITENAME}} as \"$1\".",
536 'nosuchuser' => "There is no user by the name \"$1\".
537 Check your spelling, or use the form below to create a new user account.",
538 'wrongpassword' => 'The password you entered is incorrect. Please try again.',
539 'mailmypassword' => 'Mail me a new password',
540 'passwordremindertitle' => "Password reminder from {{SITENAME}}",
541 'passwordremindertext' => "Someone (probably you, from IP address $1)
542 requested that we send you a new {{SITENAME}} login password.
543 The password for user \"$2\" is now \"$3\".
544 You should log in and change your password now.",
545 'noemail' => "There is no e-mail address recorded for user \"$1\".",
546 'passwordsent' => "A new password has been sent to the e-mail address
547 registered for \"$1\".
548 Please log in again after you receive it.",
549 'loginend' => '&nbsp;',
550 'mailerror' => "Error sending mail: $1",
551 'acct_creation_throttle_hit' => 'Sorry, you have already created $1 accounts. You can\'t make any more.',
552
553 # Edit page toolbar
554 'bold_sample'=>'Bold text',
555 'bold_tip'=>'Bold text',
556 'italic_sample'=>'Italic text',
557 'italic_tip'=>'Italic text',
558 'link_sample'=>'Link title',
559 'link_tip'=>'Internal link',
560 'extlink_sample'=>'http://www.example.com link title',
561 'extlink_tip'=>'External link (remember http:// prefix)',
562 'headline_sample'=>'Headline text',
563 'headline_tip'=>'Level 2 headline',
564 'math_sample'=>'Insert formula here',
565 'math_tip'=>'Mathematical formula (LaTeX)',
566 'nowiki_sample'=>'Insert non-formatted text here',
567 'nowiki_tip'=>'Ignore wiki formatting',
568 'image_sample'=>'Example.jpg',
569 'image_tip'=>'Embedded image',
570 'media_sample'=>'Example.mp3',
571 'media_tip'=>'Media file link',
572 'sig_tip'=>'Your signature with timestamp',
573 'hr_tip'=>'Horizontal line (use sparingly)',
574 'infobox'=>'Click a button to get an example text',
575 # alert box shown in browsers where text selection does not work, test e.g. with mozilla or konqueror
576 'infobox_alert'=>"Please enter the text you want to be formatted.\\n It will be shown in the infobox for copy and pasting.\\nExample:\\n$1\\nwill become:\\n$2",
577
578 # Edit pages
579 #
580 'summary' => 'Summary',
581 'subject' => 'Subject/headline',
582 'minoredit' => 'This is a minor edit',
583 'watchthis' => 'Watch this page',
584 'savearticle' => 'Save page',
585 'preview' => 'Preview',
586 'showpreview' => 'Show preview',
587 'blockedtitle' => 'User is blocked',
588 'blockedtext' => "Your user name or IP address has been blocked by $1.
589 The reason given is this:<br />''$2''<p>You may contact $1 or one of the other
590 [[{{ns:4}}:Administrators|administrators]] to discuss the block.
591
592 Note that you may not use the \"email this user\" feature unless you have a valid email address registered in your [[Special:Preferences|user preferences]].
593
594 Your IP address is $3. Please include this address in any queries you make.
595 ",
596 'whitelistedittitle' => 'Login required to edit',
597 'whitelistedittext' => 'You have to [[Special:Userlogin|login]] to edit pages.',
598 'whitelistreadtitle' => 'Login required to read',
599 'whitelistreadtext' => 'You have to [[Special:Userlogin|login]] to read pages.',
600 'whitelistacctitle' => 'You are not allowed to create an account',
601 'whitelistacctext' => 'To be allowed to create accounts in this Wiki you have to [[Special:Userlogin|log]] in and have the appropriate permissions.',
602 'loginreqtitle' => 'Login Required',
603 'loginreqtext' => 'You must [[special:Userlogin|login]] to view other pages.',
604 'accmailtitle' => 'Password sent.',
605 'accmailtext' => "The Password for '$1' has been sent to $2.",
606 'newarticle' => '(New)',
607 'newarticletext' =>
608 "You've followed a link to a page that doesn't exist yet.
609 To create the page, start typing in the box below
610 (see the [[{{ns:4}}:Help|help page]] for more info).
611 If you are here by mistake, just click your browser's '''back''' button.",
612 'talkpagetext' => '<!-- MediaWiki:talkpagetext -->',
613 'anontalkpagetext' => "----''This is the discussion page for an anonymous user who has not created an account yet or who does not use it. We therefore have to use the numerical [[IP address]] to identify him/her. Such an IP address can be shared by several users. If you are an anonymous user and feel that irrelevant comments have been directed at you, please [[Special:Userlogin|create an account or log in]] to avoid future confusion with other anonymous users.'' ",
614 'noarticletext' => '(There is currently no text in this page)',
615 'clearyourcache' => "'''Note:''' After saving, you have to clear your browser cache to see the changes: '''Mozilla:''' click ''Reload'' (or ''Ctrl-R''), '''IE / Opera:''' ''Ctrl-F5'', '''Safari:''' ''Cmd-R'', '''Konqueror''' ''Ctrl-R''.",
616 'usercssjsyoucanpreview' => "<strong>Tip:</strong> Use the 'Show preview' button to test your new CSS/JS before saving.",
617 'usercsspreview' => "'''Remember that you are only previewing your user CSS, it has not yet been saved!'''",
618 'userjspreview' => "'''Remember that you are only testing/previewing your user JavaScript, it has not yet been saved!'''",
619 'updated' => '(Updated)',
620 'note' => '<strong>Note:</strong> ',
621 'previewnote' => 'Remember that this is only a preview, and has not yet been saved!',
622 'previewconflict' => 'This preview reflects the text in the upper
623 text editing area as it will appear if you choose to save.',
624 'editing' => "Editing $1",
625 "sectionedit" => " (section)",
626 'commentedit' => ' (comment)',
627 'editconflict' => 'Edit conflict: $1',
628 'explainconflict' => "Someone else has changed this page since you
629 started editing it.
630 The upper text area contains the page text as it currently exists.
631 Your changes are shown in the lower text area.
632 You will have to merge your changes into the existing text.
633 <b>Only</b> the text in the upper text area will be saved when you
634 press \"Save page\".\n<p>",
635 'yourtext' => 'Your text',
636 'storedversion' => 'Stored version',
637 'editingold' => '<strong>WARNING: You are editing an out-of-date
638 revision of this page.
639 If you save it, any changes made since this revision will be lost.</strong>\n',
640 'yourdiff' => 'Differences',
641 'copyrightwarning' => "Please note that all contributions to {{SITENAME}} are
642 considered to be released under the $2 (see $1 for details).
643 If you don't want your writing to be edited mercilessly and redistributed
644 at will, then don't submit it here.<br />
645 You are also promising us that you wrote this yourself, or copied it from a
646 public domain or similar free resource.
647 <strong>DO NOT SUBMIT COPYRIGHTED WORK WITHOUT PERMISSION!</strong>",
648 'copyrightwarning2' => "Please note that all contributions to {{SITENAME}}
649 may be edited, altered, or removed by other contributors.
650 If you don't want your writing to be edited mercilessly, then don't submit it here.<br />
651 You are also promising us that you wrote this yourself, or copied it from a
652 public domain or similar free resource (see $1 for details).
653 <strong>DO NOT SUBMIT COPYRIGHTED WORK WITHOUT PERMISSION!</strong>",
654 'longpagewarning' => "WARNING: This page is $1 kilobytes long; some
655 browsers may have problems editing pages approaching or longer than 32kb.
656 Please consider breaking the page into smaller sections.",
657 'readonlywarning' => 'WARNING: The database has been locked for maintenance,
658 so you will not be able to save your edits right now. You may wish to cut-n-paste
659 the text into a text file and save it for later.',
660 'protectedpagewarning' => "WARNING: This page has been locked so that only
661 users with sysop privileges can edit it. Be sure you are following the
662 <a href='$wgScript/{{ns:4}}:Protected_page_guidelines'>protected page
663 guidelines</a>.",
664 'templatesused' => 'Templates used on this page:',
665
666 # History pages
667 #
668 'revhistory' => 'Revision history',
669 'nohistory' => 'There is no edit history for this page.',
670 'revnotfound' => 'Revision not found',
671 'revnotfoundtext' => "The old revision of the page you asked for could not be found.
672 Please check the URL you used to access this page.\n",
673 'loadhist' => 'Loading page history',
674 'currentrev' => 'Current revision',
675 'revisionasof' => "Revision as of $1",
676 'cur' => 'cur',
677 'next' => 'next',
678 'last' => 'last',
679 'orig' => 'orig',
680 'histlegend' => 'Diff selection: mark the radio boxes of the versions to compare and hit enter or the button at the bottom.<br/>
681 Legend: (cur) = difference with current version,
682 (last) = difference with preceding version, M = minor edit.',
683 'history_copyright' => '-',
684
685 # Diffs
686 #
687 'difference' => '(Difference between revisions)',
688 'loadingrev' => 'loading revision for diff',
689 'lineno' => "Line $1:",
690 'editcurrent' => 'Edit the current version of this page',
691 'selectnewerversionfordiff' => 'Select a newer version for comparison',
692 'selectolderversionfordiff' => 'Select an older version for comparison',
693 'compareselectedversions' => 'Compare selected versions',
694
695 # Search results
696 #
697 'searchresults' => 'Search results',
698 'searchresulttext' => "For more information about searching {{SITENAME}}, see [[Project:Searching|Searching {{SITENAME}}]].",
699 'searchquery' => "For query \"$1\"",
700 'badquery' => 'Badly formed search query',
701 'badquerytext' => 'We could not process your query.
702 This is probably because you have attempted to search for a
703 word fewer than three letters long, which is not yet supported.
704 It could also be that you have mistyped the expression, for
705 example "fish and and scales".
706 Please try another query.',
707 'matchtotals' => "The query \"$1\" matched $2 page titles
708 and the text of $3 pages.",
709 'nogomatch' => 'No page with this exact title exists, trying full text search.',
710 'titlematches' => 'Article title matches',
711 'notitlematches' => 'No page title matches',
712 'textmatches' => 'Page text matches',
713 'notextmatches' => 'No page text matches',
714 'prevn' => "previous $1",
715 'nextn' => "next $1",
716 'viewprevnext' => "View ($1) ($2) ($3).",
717 'showingresults' => "Showing below <b>$1</b> results starting with #<b>$2</b>.",
718 'showingresultsnum' => "Showing below <b>$3</b> results starting with #<b>$2</b>.",
719 'nonefound' => "'''Note''': unsuccessful searches are
720 often caused by searching for common words like \"have\" and \"from\",
721 which are not indexed, or by specifying more than one search term (only pages
722 containing all of the search terms will appear in the result).",
723 'powersearch' => 'Search',
724 'powersearchtext' => "
725 Search in namespaces :<br />
726 $1<br />
727 $2 List redirects &nbsp; Search for $3 $9",
728 "searchdisabled" => "<p>Sorry! Full text search has been disabled temporarily, for performance reasons. In the meantime, you can use the Google search below, which may be out of date.</p>",
729 'googlesearch' => "
730 <!-- SiteSearch Google -->
731 <FORM method=GET action=\"http://www.google.com/search\">
732 <TABLE bgcolor=\"#FFFFFF\"><tr><td>
733 <A HREF=\"http://www.google.com/\">
734 <IMG SRC=\"http://www.google.com/logos/Logo_40wht.gif\"
735 border=\"0\" ALT=\"Google\"></A>
736 </td>
737 <td>
738 <INPUT TYPE=text name=q size=31 maxlength=255 value=\"$1\">
739 <INPUT type=submit name=btnG VALUE=\"Google Search\">
740 <font size=-1>
741 <input type=hidden name=domains value=\"{{SERVER}}\"><br /><input type=radio name=sitesearch value=\"\"> WWW <input type=radio name=sitesearch value=\"{{SERVER}}\" checked> {{SERVER}} <br />
742 <input type='hidden' name='ie' value='$2'>
743 <input type='hidden' name='oe' value='$2'>
744 </font>
745 </td></tr></TABLE>
746 </FORM>
747 <!-- SiteSearch Google -->",
748 'blanknamespace' => '(Main)',
749
750 # Preferences page
751 #
752 'preferences' => 'Preferences',
753 'prefsnologin' => 'Not logged in',
754 'prefsnologintext' => "You must be <a href=\"{{localurl:Special:Userlogin}}\">logged in</a>
755 to set user preferences.",
756 'prefslogintext' => "You are logged in as \"$1\".
757 Your internal ID number is $2.
758
759 See [[{{ns:4}}:User preferences help]] for help deciphering the options.",
760 'prefsreset' => 'Preferences have been reset from storage.',
761 'qbsettings' => 'Quickbar settings',
762 'qbsettingsnote' => 'This preference only works in the \'Standard\' and the \'CologneBlue\' skin.',
763 'changepassword' => 'Change password',
764 'skin' => 'Skin',
765 'math' => 'Rendering math',
766 'dateformat' => 'Date format',
767 'math_failure' => 'Failed to parse',
768 'math_unknown_error' => 'unknown error',
769 'math_unknown_function' => 'unknown function ',
770 'math_lexing_error' => 'lexing error',
771 'math_syntax_error' => 'syntax error',
772 'math_image_error' => 'PNG conversion failed; check for correct installation of latex, dvips, gs, and convert',
773 'math_bad_tmpdir' => 'Can\'t write to or create math temp directory',
774 'math_bad_output' => 'Can\'t write to or create math output directory',
775 'math_notexvc' => 'Missing texvc executable; please see math/README to configure.',
776 'prefs-personal' => 'User data',
777 'prefs-rc' => 'Recent changes and stub display',
778 'prefs-misc' => 'Misc settings',
779 'saveprefs' => 'Save preferences',
780 'resetprefs' => 'Reset preferences',
781 'oldpassword' => 'Old password',
782 'newpassword' => 'New password',
783 'retypenew' => 'Retype new password',
784 'textboxsize' => 'Editing',
785 'rows' => 'Rows',
786 'columns' => 'Columns',
787 'searchresultshead' => 'Search result settings',
788 'resultsperpage' => 'Hits to show per page',
789 'contextlines' => 'Lines to show per hit',
790 'contextchars' => 'Characters of context per line',
791 'stubthreshold' => 'Threshold for stub display',
792 'recentchangescount' => 'Number of titles in recent changes',
793 'savedprefs' => 'Your preferences have been saved.',
794 'timezonelegend' => 'Time zone',
795 'timezonetext' => 'Enter number of hours your local time differs
796 from server time (UTC).',
797 'localtime' => 'Local time display',
798 'timezoneoffset' => 'Offset',
799 'servertime' => 'Server time is now',
800 'guesstimezone' => 'Fill in from browser',
801 'emailflag' => 'Disable e-mail from other users',
802 'defaultns' => 'Search in these namespaces by default:',
803
804 # Recent changes
805 #
806 'changes' => 'changes',
807 'recentchanges' => 'Recent changes',
808 'recentchangestext' => 'Track the most recent changes to the wiki on this page.',
809 'rcloaderr' => 'Loading recent changes',
810 'rcnote' => "Below are the last <strong>$1</strong> changes in last <strong>$2</strong> days.",
811 'rcnotefrom' => "Below are the changes since <b>$2</b> (up to <b>$1</b> shown).",
812 'rclistfrom' => "Show new changes starting from $1",
813 'showhideminor' => "$1 minor edits | $2 bots | $3 logged in users | $4 patrolled edits ",
814 'rclinks' => "Show last $1 changes in last $2 days<br />$3",
815 'rchide' => "in $4 form; $1 minor edits; $2 secondary namespaces; $3 multiple edits.",
816 'rcliu' => "; $1 edits from logged in users",
817 'diff' => 'diff',
818 'hist' => 'hist',
819 'hide' => 'hide',
820 'show' => 'show',
821 'tableform' => 'table',
822 'listform' => 'list',
823 'nchanges' => "$1 changes",
824 'minoreditletter' => 'm',
825 'newpageletter' => 'N',
826
827 # Upload
828 #
829 'upload' => 'Upload file',
830 'uploadbtn' => 'Upload file',
831 'uploadlink' => 'Upload images',
832 'reupload' => 'Re-upload',
833 'reuploaddesc' => 'Return to the upload form.',
834 'uploadnologin' => 'Not logged in',
835 'uploadnologintext' => "You must be <a href=\"{{localurl:Special:Userlogin}}\">logged in</a>
836 to upload files.",
837 'uploadfile' => 'Upload images, sounds, documents etc.',
838 'uploaderror' => 'Upload error',
839 'uploadtext' =>
840 "'''STOP!''' Before you upload here,
841 make sure to read and follow the [[Project:Image use policy|image use policy]].
842
843 To view or search previously uploaded images,
844 go to the [[Special:Imagelist|list of uploaded images]].
845 Uploads and deletions are logged on the
846 [[Project:Upload log|upload log]].
847
848 Use the form below to upload new image files for use in
849 illustrating your pages.
850 On most browsers, you will see a \"Browse...\" button, which will
851 bring up your operating system's standard file open dialog.
852 Choosing a file will fill the name of that file into the text
853 field next to the button.
854 You must also check the box affirming that you are not
855 violating any copyrights by uploading the file.
856 Press the \"Upload\" button to finish the upload.
857 This may take some time if you have a slow internet connection.
858
859 The preferred formats are JPEG for photographic images, PNG
860 for drawings and other iconic images, and OGG for sounds.
861 Please name your files descriptively to avoid confusion.
862 To include the image in a page, use a link in the form
863 '''<nowiki>[[{{ns:6}}:file.jpg]]</nowiki>''' or
864 '''<nowiki>[[{{ns:6}}:file.png|alt text]]</nowiki>''' or
865 '''<nowiki>[[{{ns:-2}}:file.ogg]]</nowiki>''' for sounds.
866
867 Please note that as with wiki pages, others may edit or
868 delete your uploads if they think it serves the project, and
869 you may be blocked from uploading if you abuse the system.",
870
871 'uploadlog' => 'upload log',
872 'uploadlogpage' => 'Upload_log',
873 'uploadlogpagetext' => 'Below is a list of the most recent file uploads.
874 All times shown are server time (UTC).
875 <ul>
876 </ul>
877 ',
878 'filename' => 'Filename',
879 'filedesc' => 'Summary',
880 'filestatus' => 'Copyright status',
881 'filesource' => 'Source',
882 'affirmation' => "I affirm that the copyright holder of this file
883 agrees to license it under the terms of the $1.",
884 'copyrightpage' => "{{ns:4}}:Copyrights",
885 'copyrightpagename' => "{{SITENAME}} copyright",
886 'uploadedfiles' => 'Uploaded files',
887 'noaffirmation' => 'You must affirm that your upload does not violate any copyrights.',
888 'ignorewarning' => 'Ignore warning and save file anyway.',
889 'minlength' => 'Image names must be at least three letters.',
890 'illegalfilename' => 'The filename "$1" contains characters that are not allowed in page titles. Please rename the file and try uploading it again.',
891 'badfilename' => "Image name has been changed to \"$1\".",
892 'badfiletype' => "\".$1\" is not a recommended image file format.",
893 'largefile' => 'It is recommended that images not exceed 100k in size.',
894 'emptyfile' => 'The file you uploaded seems to be empty. This might be due to a typo in the file name. Please check whether you really want to upload this file.',
895 'fileexists' => 'A file with this name exists already, please check $1 if you are not sure if you want to change it.',
896 'successfulupload' => 'Successful upload',
897 'fileuploaded' => "File uploaded successfully.
898 Please follow this link: $2 to the description page and fill
899 in information about the file, such as where it came from, when it was
900 created and by whom, and anything else you may know about it. If this is an image, you can insert it like this: <tt><nowiki>[[Image:$1|thumb|Description]]</nowiki></tt>",
901 'uploadwarning' => 'Upload warning',
902 'savefile' => 'Save file',
903 'uploadedimage' => "uploaded \"$1\"",
904 'uploaddisabled' => 'Sorry, uploading is disabled.',
905
906 # Image list
907 #
908 'imagelist' => 'Image list',
909 'imagelisttext' => "Below is a list of $1 images sorted $2.",
910 'getimagelist' => 'fetching image list',
911 'ilshowmatch' => 'Show all images with names matching',
912 'ilsubmit' => 'Search',
913 'showlast' => "Show last $1 images sorted $2.",
914 'all' => 'all',
915 'byname' => 'by name',
916 'bydate' => 'by date',
917 'bysize' => 'by size',
918 'imgdelete' => 'del',
919 'imgdesc' => 'desc',
920 'imglegend' => 'Legend: (desc) = show/edit image description.',
921 'imghistory' => 'Image history',
922 'revertimg' => 'rev',
923 'deleteimg' => 'del',
924 'deleteimgcompletely' => 'Delete all revisions',
925 'imghistlegend' => 'Legend: (cur) = this is the current image, (del) = delete
926 this old version, (rev) = revert to this old version.
927 <br /><i>Click on date to see image uploaded on that date</i>.',
928 'imagelinks' => 'Image links',
929 'linkstoimage' => 'The following pages link to this image:',
930 'nolinkstoimage' => 'There are no pages that link to this image.',
931
932 # Statistics
933 #
934 'statistics' => 'Statistics',
935 'sitestats' => 'Site statistics',
936 'userstats' => 'User statistics',
937 'sitestatstext' => "There are '''$1''' total pages in the database.
938 This includes \"talk\" pages, pages about {{SITENAME}}, minimal \"stub\"
939 pages, redirects, and others that probably don't qualify as content pages.
940 Excluding those, there are '''$2''' pages that are probably legitimate
941 content pages.
942
943 There have been a total of '''$3''' page views, and '''$4''' page edits
944 since the wiki was setup.
945 That comes to '''$5''' average edits per page, and '''$6''' views per edit.",
946 'userstatstext' => "There are '''$1''' registered users.
947 '''$2''' of these are administrators (see $3).",
948
949 # Maintenance Page
950 #
951 'maintenance' => 'Maintenance page',
952 'maintnancepagetext' => 'This page includes several handy tools for everyday maintenance. Some of these functions tend to stress the database, so please do not hit reload after every item you fixed ;-)',
953 'maintenancebacklink' => 'Back to Maintenance Page',
954 'disambiguations' => 'Disambiguation pages',
955 'disambiguationspage' => "{{ns:4}}:Links_to_disambiguating_pages",
956 'disambiguationstext' => "The following pages link to a <i>disambiguation page</i>. They should link to the appropriate topic instead.<br />A page is treated as dismbiguation if it is linked from $1.<br />Links from other namespaces are <i>not</i> listed here.",
957 'doubleredirects' => 'Double Redirects',
958 'doubleredirectstext' => "<b>Attention:</b> This list may contain false positives. That usually means there is additional text with links below the first #REDIRECT.<br />\nEach row contains links to the first and second redirect, as well as the first line of the second redirect text, usually giving the \"real\" target page, which the first redirect should point to.",
959 'brokenredirects' => 'Broken Redirects',
960 'brokenredirectstext' => 'The following redirects link to a non-existing pages.',
961 'selflinks' => 'Pages with Self Links',
962 'selflinkstext' => 'The following pages contain a link to themselves, which they should not.',
963 'mispeelings' => 'Pages with misspellings',
964 'mispeelingstext' => "The following pages contain a common misspelling, which are listed on $1. The correct spelling might be given (like this).",
965 'mispeelingspage' => 'List of common misspellings',
966 'missinglanguagelinks' => 'Missing Language Links',
967 'missinglanguagelinksbutton' => 'Find missing language links for',
968 'missinglanguagelinkstext' => "These pages do <i>not</i> link to their counterpart in $1. Redirects and subpages are <i>not</i> shown.",
969
970
971 # Miscellaneous special pages
972 #
973 'orphans' => 'Orphaned pages',
974 'geo' => 'GEO coordinates',
975 'validate' => 'Validate page',
976 'lonelypages' => 'Orphaned pages',
977 'uncategorizedpages' => 'Uncategorized pages',
978 'unusedimages' => 'Unused images',
979 'popularpages' => 'Popular pages',
980 'nviews' => '$1 views',
981 'wantedpages' => 'Wanted pages',
982 'nlinks' => '$1 links',
983 'allpages' => 'All pages',
984 'randompage' => 'Random page',
985 'shortpages' => 'Short pages',
986 'longpages' => 'Long pages',
987 'deadendpages' => 'Dead-end pages',
988 'listusers' => 'User list',
989 'listadmins' => 'Admins list',
990 'specialpages' => 'Special pages',
991 'spheading' => 'Special pages for all users',
992 'sysopspheading' => 'For sysop use only',
993 'developerspheading' => 'For developer use only',
994 'protectpage' => 'Protect page',
995 'recentchangeslinked' => 'Related changes',
996 'rclsub' => "(to pages linked from \"$1\")",
997 'debug' => 'Debug',
998 'newpages' => 'New pages',
999 'ancientpages' => 'Oldest pages',
1000 'intl' => 'Interlanguage links',
1001 'move' => 'Move',
1002 'movethispage' => 'Move this page',
1003 'unusedimagestext' => '<p>Please note that other web sites may link to an image with
1004 a direct URL, and so may still be listed here despite being
1005 in active use.',
1006 'booksources' => 'Book sources',
1007 # FIXME: Other sites, of course, may have affiliate relations with the booksellers list
1008 'booksourcetext' => "Below is a list of links to other sites that
1009 sell new and used books, and may also have further information
1010 about books you are looking for.
1011 {{SITENAME}} is not affiliated with any of these businesses, and
1012 this list should not be construed as an endorsement.",
1013 'isbn' => 'ISBN',
1014 'rfcurl' => "http://www.faqs.org/rfcs/rfc$1.html",
1015 'alphaindexline' => "$1 to $2",
1016 'version' => 'Version',
1017 'log' => 'Logs',
1018 'alllogstext' => 'Combined display of upload, deletion, protection, blocking, and sysop logs.
1019 You can narrow down the view by selecting a log type, the user name, or the affected page.',
1020
1021 # Special:Allpages
1022 'nextpage' => 'Next page ($1)',
1023 'articlenamespace' => '(articles)',
1024 'allpagesformtext' => 'Display pages starting at: $1 Choose namespace: $2 $3',
1025 'allarticles' => 'All articles',
1026 'allpagesprev' => 'Previous',
1027 'allpagesnext' => 'Next',
1028 'allpagesnamespace' => 'All pages ($1 namespace)',
1029 'allpagessubmit' => 'Go',
1030
1031 # Email this user
1032 #
1033 'mailnologin' => 'No send address',
1034 'mailnologintext' => "You must be <a href=\"{{localurl:Special:Userlogin\">logged in</a>
1035 and have a valid e-mail address in your <a href=\"{{localurl:Special:Preferences}}\">preferences</a>
1036 to send e-mail to other users.",
1037 'emailuser' => 'E-mail this user',
1038 'emailpage' => 'E-mail user',
1039 'emailpagetext' => 'If this user has entered a valid e-mail address in
1040 his or her user preferences, the form below will send a single message.
1041 The e-mail address you entered in your user preferences will appear
1042 as the "From" address of the mail, so the recipient will be able
1043 to reply.',
1044 'usermailererror' => 'Mail object returned error: ',
1045 'defemailsubject' => "{{SITENAME}} e-mail",
1046 'noemailtitle' => 'No e-mail address',
1047 'noemailtext' => 'This user has not specified a valid e-mail address,
1048 or has chosen not to receive e-mail from other users.',
1049 'emailfrom' => 'From',
1050 'emailto' => 'To',
1051 'emailsubject' => 'Subject',
1052 'emailmessage' => 'Message',
1053 'emailsend' => 'Send',
1054 'emailsent' => 'E-mail sent',
1055 'emailsenttext' => 'Your e-mail message has been sent.',
1056
1057 # Watchlist
1058 #
1059 'watchlist' => 'My watchlist',
1060 'watchlistsub' => "(for user \"$1\")",
1061 'nowatchlist' => 'You have no items on your watchlist.',
1062 'watchnologin' => 'Not logged in',
1063 'watchnologintext' => "You must be <a href=\"{{localurl:Special:Userlogin}}\">logged in</a>
1064 to modify your watchlist.",
1065 'addedwatch' => 'Added to watchlist',
1066 'addedwatchtext' => "The page \"$1\" has been added to your [[{{ns:-1}}:Watchlist|watchlist]].
1067 Future changes to this page and its associated Talk page will be listed there,
1068 and the page will appear '''bolded''' in the [[Special:Recentchanges|list of recent changes]] to
1069 make it easier to pick out.
1070
1071 <p>If you want to remove the page from your watchlist later, click \"Stop watching\" in the sidebar.",
1072 'removedwatch' => 'Removed from watchlist',
1073 'removedwatchtext' => "The page \"$1\" has been removed from your watchlist.",
1074 'watch' => 'Watch',
1075 'watchthispage' => 'Watch this page',
1076 'unwatch' => 'Unwatch',
1077 'unwatchthispage' => 'Stop watching',
1078 'notanarticle' => 'Not a content page',
1079 'watchnochange' => 'None of your watched items were edited in the time period displayed.',
1080 'watchdetails' => "($1 pages watched not counting talk pages;
1081 $2 total pages edited since cutoff;
1082 $3...
1083 <a href='$4'>show and edit complete list</a>.)",
1084 'watchmethod-recent'=> 'checking recent edits for watched pages',
1085 'watchmethod-list' => 'checking watched pages for recent edits',
1086 'removechecked' => 'Remove checked items from watchlist',
1087 'watchlistcontains' => "Your watchlist contains $1 pages.",
1088 'watcheditlist' => 'Here\'s an alphabetical list of your
1089 watched pages. Check the boxes of pages you want to remove
1090 from your watchlist and click the \'remove checked\' button
1091 at the bottom of the screen.',
1092 'removingchecked' => 'Removing requested items from watchlist...',
1093 'couldntremove' => "Couldn't remove item '$1'...",
1094 'iteminvalidname' => "Problem with item '$1', invalid name...",
1095 'wlnote' => "Below are the last $1 changes in the last <b>$2</b> hours.",
1096 'wlshowlast' => "Show last $1 hours $2 days $3",
1097 'wlsaved' => 'This is a saved version of your watchlist.',
1098
1099
1100 # Delete/protect/revert
1101 #
1102 'deletepage' => 'Delete page',
1103 'confirm' => 'Confirm',
1104 'excontent' => 'content was:',
1105 'exbeforeblank' => 'content before blanking was:',
1106 'exblank' => 'page was empty',
1107 'confirmdelete' => 'Confirm delete',
1108 'deletesub' => "(Deleting \"$1\")",
1109 'historywarning' => 'Warning: The page you are about to delete has a history: ',
1110 'confirmdeletetext' => "You are about to permanently delete a page
1111 or image along with all of its history from the database.
1112 Please confirm that you intend to do this, that you understand the
1113 consequences, and that you are doing this in accordance with
1114 [[{{ns:4}}:Policy]].",
1115 'confirmcheck' => 'Yes, I really want to delete this.',
1116 'actioncomplete' => 'Action complete',
1117 'deletedtext' => "\"$1\" has been deleted.
1118 See $2 for a record of recent deletions.",
1119 'deletedarticle' => "deleted \"$1\"",
1120 'dellogpage' => 'Deletion_log',
1121 'dellogpagetext' => 'Below is a list of the most recent deletions.
1122 All times shown are server time (UTC).
1123 <ul>
1124 </ul>
1125 ',
1126 'deletionlog' => 'deletion log',
1127 'reverted' => 'Reverted to earlier revision',
1128 'deletecomment' => 'Reason for deletion',
1129 'imagereverted' => 'Revert to earlier version was successful.',
1130 'rollback' => 'Roll back edits',
1131 'rollback_short' => 'Rollback',
1132 'rollbacklink' => 'rollback',
1133 'rollbackfailed' => 'Rollback failed',
1134 'cantrollback' => 'Cannot revert edit; last contributor is only author of this page.',
1135 'alreadyrolled' => "Cannot rollback last edit of [[$1]]
1136 by [[User:$2|$2]] ([[User talk:$2|Talk]]); someone else has edited or rolled back the page already.
1137
1138 Last edit was by [[User:$3|$3]] ([[User talk:$3|Talk]]). ",
1139 # only shown if there is an edit comment
1140 'editcomment' => "The edit comment was: \"<i>$1</i>\".",
1141 'revertpage' => "Reverted edit of $2, changed back to last version by $1",
1142 'protectlogpage' => 'Protection_log',
1143 'protectlogtext' => "Below is a list of page locks/unlocks.
1144 See [[{{ns:4}}:Protected page]] for more information.",
1145 'protectedarticle' => "protected [[$1]]",
1146 'unprotectedarticle' => "unprotected [[$1]]",
1147 'protectsub' =>"(Protecting \"$1\")",
1148 'confirmprotecttext' => 'Do you really want to protect this page?',
1149 'confirmprotect' => 'Confirm protection',
1150 'protectcomment' => 'Reason for protecting',
1151 'unprotectsub' =>"(Unprotecting \"$1\")",
1152 'confirmunprotecttext' => 'Do you really want to unprotect this page?',
1153 'confirmunprotect' => 'Confirm unprotection',
1154 'unprotectcomment' => 'Reason for unprotecting',
1155 'protectreason' => '(give a reason)',
1156
1157 # Undelete
1158 'undelete' => 'Restore deleted page',
1159 'undeletepage' => 'View and restore deleted pages',
1160 'undeletepagetext' => 'The following pages have been deleted but are still in the archive and
1161 can be restored. The archive may be periodically cleaned out.',
1162 'undeletearticle' => 'Restore deleted page',
1163 'undeleterevisions' => "$1 revisions archived",
1164 'undeletehistory' => 'If you restore the page, all revisions will be restored to the history.
1165 If a new page with the same name has been created since the deletion, the restored
1166 revisions will appear in the prior history, and the current revision of the live page
1167 will not be automatically replaced.',
1168 'undeleterevision' => "Deleted revision as of $1",
1169 'undeletebtn' => 'Restore!',
1170 'undeletedarticle' => "restored \"$1\"",
1171 'undeletedtext' => "[[$1]] has been successfully restored.
1172 See [[{{ns:4}}:Deletion_log]] for a record of recent deletions and restorations.",
1173
1174 # Contributions
1175 #
1176 'contributions' => 'User contributions',
1177 'mycontris' => 'My contributions',
1178 'contribsub' => "For $1",
1179 'nocontribs' => 'No changes were found matching these criteria.',
1180 'ucnote' => "Below are this user's last <b>$1</b> changes in the last <b>$2</b> days.",
1181 'uclinks' => "View the last $1 changes; view the last $2 days.",
1182 'uctop' => ' (top)' ,
1183 'newbies' => 'newbies',
1184
1185 # What links here
1186 #
1187 'whatlinkshere' => 'What links here',
1188 'notargettitle' => 'No target',
1189 'notargettext' => 'You have not specified a target page or user
1190 to perform this function on.',
1191 'linklistsub' => '(List of links)',
1192 'linkshere' => 'The following pages link to here:',
1193 'nolinkshere' => 'No pages link to here.',
1194 'isredirect' => 'redirect page',
1195
1196 # Block/unblock IP
1197 #
1198 'blockip' => 'Block user',
1199 'blockiptext' => "Use the form below to block write access
1200 from a specific IP address or username.
1201 This should be done only only to prevent vandalism, and in
1202 accordance with [[{{ns:4}}:Policy|policy]].
1203 Fill in a specific reason below (for example, citing particular
1204 pages that were vandalized).",
1205 'ipaddress' => 'IP Address/username',
1206 'ipbexpiry' => 'Expiry',
1207 'ipbreason' => 'Reason',
1208 'ipbsubmit' => 'Block this user',
1209 'badipaddress' => 'Invalid IP address',
1210 'noblockreason' => 'You must supply a reason for the block.',
1211 'blockipsuccesssub' => 'Block succeeded',
1212 'blockipsuccesstext' => "\"$1\" has been blocked.
1213 <br />See [[Special:Ipblocklist|IP block list]] to review blocks.",
1214 'unblockip' => 'Unblock user',
1215 'unblockiptext' => 'Use the form below to restore write access
1216 to a previously blocked IP address or username.',
1217 'ipusubmit' => 'Unblock this address',
1218 'ipusuccess' => "\"$1\" unblocked",
1219 'ipblocklist' => 'List of blocked IP addresses and usernames',
1220 'blocklistline' => "$1, $2 blocked $3 (expires $4)",
1221 'blocklink' => 'block',
1222 'unblocklink' => 'unblock',
1223 'contribslink' => 'contribs',
1224 'autoblocker' => "Autoblocked because you share an IP address with \"$1\". Reason \"$2\".",
1225 'blocklogpage' => 'Block_log',
1226 'blocklogentry' => 'blocked "$1" with an expiry time of $2',
1227 'blocklogtext' => 'This is a log of user blocking and unblocking actions. Automatically
1228 blocked IP addresses are not be listed. See the [[Special:Ipblocklist|IP block list]] for
1229 the list of currently operational bans and blocks.',
1230 'unblocklogentry' => 'unblocked "$1"',
1231 'range_block_disabled' => 'The sysop ability to create range blocks is disabled.',
1232 'ipb_expiry_invalid' => 'Expiry time invalid.',
1233 'ip_range_invalid' => "Invalid IP range.\n",
1234 'proxyblocker' => 'Proxy blocker',
1235 'proxyblockreason' => 'Your IP address has been blocked because it is an open proxy. Please contact your Internet service provider or tech support and inform them of this serious security problem.',
1236 'proxyblocksuccess' => "Done.\n",
1237
1238 # Developer tools
1239 #
1240 'lockdb' => 'Lock database',
1241 'unlockdb' => 'Unlock database',
1242 'lockdbtext' => 'Locking the database will suspend the ability of all
1243 users to edit pages, change their preferences, edit their watchlists, and
1244 other things requiring changes in the database.
1245 Please confirm that this is what you intend to do, and that you will
1246 unlock the database when your maintenance is done.',
1247 'unlockdbtext' => 'Unlocking the database will restore the ability of all
1248 users to edit pages, change their preferences, edit their watchlists, and
1249 other things requiring changes in the database.
1250 Please confirm that this is what you intend to do.',
1251 'lockconfirm' => 'Yes, I really want to lock the database.',
1252 'unlockconfirm' => 'Yes, I really want to unlock the database.',
1253 'lockbtn' => 'Lock database',
1254 'unlockbtn' => 'Unlock database',
1255 'locknoconfirm' => 'You did not check the confirmation box.',
1256 'lockdbsuccesssub' => 'Database lock succeeded',
1257 'unlockdbsuccesssub' => 'Database lock removed',
1258 'lockdbsuccesstext' => 'The database has been locked.
1259 <br />Remember to remove the lock after your maintenance is complete.',
1260 'unlockdbsuccesstext' => 'The database has been unlocked.',
1261
1262 # SQL query
1263 #
1264 'asksql' => 'SQL query',
1265 'asksqltext' => "Use the form below to make a direct query of the
1266 database.
1267 Use single quotes ('like this') to delimit string literals.
1268 This can often add considerable load to the server, so please use
1269 this function sparingly.",
1270 'sqlislogged' => 'Please note that all queries are logged.',
1271 'sqlquery' => 'Enter query',
1272 'querybtn' => 'Submit query',
1273 'selectonly' => 'Only read-only queries are allowed.',
1274 'querysuccessful' => 'Query successful',
1275
1276 # Make sysop
1277 'makesysoptitle' => 'Make a user into a sysop',
1278 'makesysoptext' => 'This form is used by bureaucrats to turn ordinary users into administrators.
1279 Type the name of the user in the box and press the button to make the user an administrator',
1280 'makesysopname' => 'Name of the user:',
1281 'makesysopsubmit' => 'Make this user into a sysop',
1282 'makesysopok' => "<b>User \"$1\" is now a sysop</b>",
1283 'makesysopfail' => "<b>User \"$1\" could not be made into a sysop. (Did you enter the name correctly?)</b>",
1284 'setbureaucratflag' => 'Set bureaucrat flag',
1285 'bureaucratlog' => 'Bureaucrat_log',
1286 'bureaucratlogentry' => "Rights for user \"$1\" set \"$2\"",
1287 'rights' => 'Rights:',
1288 'set_user_rights' => 'Set user rights',
1289 'user_rights_set' => "<b>User rights for \"$1\" updated</b>",
1290 'set_rights_fail' => "<b>User rights for \"$1\" could not be set. (Did you enter the name correctly?)</b>",
1291 'makesysop' => 'Make a user into a sysop',
1292
1293 # Validation
1294 'val_clear_old' => 'Clear my other validation data for $1',
1295 'val_merge_old' => 'Use my previous assessment where selected \'No opinion\'',
1296 'val_form_note' => '<b>Hint:</b> Merging your data means that for the article
1297 revision you select, all options where you have specified <i>no opinion</i>
1298 will be set to the value and comment of the most recent revision for which you
1299 have expressed an opinion. For example, if you want to change a single option
1300 for a newer revision, but also keep your other settings for this article in
1301 this revision, just select which option you intend to <i>change</i>, and
1302 merging will fill in the other options with your previous settings.',
1303 'val_noop' => 'No opinion',
1304 'val_percent' => '<b>$1%</b><br>($2 of $3 points<br>by $4 users)',
1305 'val_percent_single' => '<b>$1%</b><br>($2 of $3 points<br>by one user)',
1306 'val_total' => 'Total',
1307 'val_version' => 'Version',
1308 'val_tab' => 'Validate',
1309 'val_this_is_current_version' => 'this is the latest version',
1310 'val_version_of' => "Version of $1" ,
1311 'val_table_header' => "<tr><th>Class</th>$1<th colspan=4>Opinion</th>$1<th>Comment</th></tr>\n",
1312 'val_stat_link_text' => 'Validation statistics for this article',
1313 'val_view_version' => 'View this version',
1314 'val_validate_version' => 'Validate this version',
1315 'val_user_validations' => 'This user has validated $1 pages.',
1316 'val_no_anon_validation' => 'You have to be logged in to validate an article.',
1317 'val_validate_article_namespace_only' => 'Only articles can be validated. This page is <i>not</i> in the article namespace.',
1318 'val_validated' => 'Validation done.',
1319 'val_article_lists' => 'List of validated articles',
1320 'val_page_validation_statistics' => 'Page validation statistics for $1',
1321
1322 # Move page
1323 #
1324 'movepage' => 'Move page',
1325 'movepagetext' => 'Using the form below will rename a page, moving all
1326 of its history to the new name.
1327 The old title will become a redirect page to the new title.
1328 Links to the old page title will not be changed; be sure to
1329 [[Special:Maintenance|check]] for double or broken redirects.
1330 You are responsible for making sure that links continue to
1331 point where they are supposed to go.
1332
1333 Note that the page will \'\'\'not\'\'\' be moved if there is already
1334 a page at the new title, unless it is empty or a redirect and has no
1335 past edit history. This means that you can rename a page back to where
1336 it was just renamed from if you make a mistake, and you cannot overwrite
1337 an existing page.
1338
1339 <b>WARNING!</b>
1340 This can be a drastic and unexpected change for a popular page;
1341 please be sure you understand the consequences of this before
1342 proceeding.',
1343 'movepagetalktext' => 'The associated talk page, if any, will be automatically moved along with it \'\'\'unless:\'\'\'
1344 *You are moving the page across namespaces,
1345 *A non-empty talk page already exists under the new name, or
1346 *You uncheck the box below.
1347
1348 In those cases, you will have to move or merge the page manually if desired.',
1349 'movearticle' => 'Move page',
1350 'movenologin' => 'Not logged in',
1351 'movenologintext' => "You must be a registered user and <a href=\"{{localurl:Special:Userlogin}}\">logged in</a>
1352 to move a page.",
1353 'newtitle' => 'To new title',
1354 'movepagebtn' => 'Move page',
1355 'pagemovedsub' => 'Move succeeded',
1356 'pagemovedtext' => "Page \"[[$1]]\" moved to \"[[$2]]\".",
1357 'articleexists' => 'A page of that name already exists, or the
1358 name you have chosen is not valid.
1359 Please choose another name.',
1360 'talkexists' => 'The page itself was moved successfully, but the
1361 talk page could not be moved because one already exists at the new
1362 title. Please merge them manually.',
1363 'movedto' => 'moved to',
1364 'movetalk' => 'Move "talk" page as well, if applicable.',
1365 'talkpagemoved' => 'The corresponding talk page was also moved.',
1366 'talkpagenotmoved' => 'The corresponding talk page was <strong>not</strong> moved.',
1367 '1movedto2' => "$1 moved to $2",
1368 '1movedto2_redir' => '$1 moved to $2 over redirect',
1369
1370 # Export
1371
1372 'export' => 'Export pages',
1373 'exporttext' => 'You can export the text and editing history of a particular page or
1374 set of pages wrapped in some XML. In the future, this may then be imported into another
1375 wiki running MediaWiki software, although there is no support for this feature in the
1376 current version.
1377
1378 To export article pages, enter the titles in the text box below, one title per line, and
1379 select whether you want the current version as well as all old versions, with the page
1380 history lines, or just the current version with the info about the last edit.
1381
1382 In the latter case you can also use a link, e.g. [[{{ns:Special}}:Export/Train]] for the
1383 article [[Train]].
1384 ',
1385 'exportcuronly' => 'Include only the current revision, not the full history',
1386
1387 # Namespace 8 related
1388
1389 'allmessages' => 'All system messages',
1390 'allmessagestext' => 'This is a list of all system messages available in the MediaWiki: namespace.',
1391
1392 # Thumbnails
1393
1394 'thumbnail-more' => 'Enlarge',
1395 'missingimage' => "<b>Missing image</b><br /><i>$1</i>\n",
1396
1397 # Special:Import
1398 'import' => 'Import pages',
1399 'importtext' => 'Please export the file from the source wiki using the Special:Export utility, save it to your disk and upload it here.',
1400 'importfailed' => "Import failed: $1",
1401 'importnotext' => 'Empty or no text',
1402 'importsuccess' => 'Import succeeded!',
1403 'importhistoryconflict' => 'Conflicting history revision exists (may have imported this page before)',
1404
1405 # Keyboard access keys for power users
1406 'accesskey-search' => 'f',
1407 'accesskey-minoredit' => 'i',
1408 'accesskey-save' => 's',
1409 'accesskey-preview' => 'p',
1410 'accesskey-compareselectedversions' => 'v',
1411
1412 # tooltip help for some actions, most are in Monobook.js
1413 'tooltip-search' => 'Search this wiki [alt-f]',
1414 'tooltip-minoredit' => 'Mark this as a minor edit [alt-i]',
1415 'tooltip-save' => 'Save your changes [alt-s]',
1416 'tooltip-preview' => 'Preview your changes, please use this before saving! [alt-p]',
1417 'tooltip-compareselectedversions' => 'See the differences between the two selected versions of this page. [alt-v]',
1418
1419 # stylesheets
1420
1421 'Monobook.css' => '/* edit this file to customize the monobook skin for the entire site */',
1422 #'Monobook.js' => '/* edit this file to change js things in the monobook skin */',
1423
1424 # Metadata
1425 'nodublincore' => 'Dublin Core RDF metadata disabled for this server.',
1426 'nocreativecommons' => 'Creative Commons RDF metadata disabled for this server.',
1427 'notacceptable' => 'The wiki server can\'t provide data in a format your client can read.',
1428
1429 # Attribution
1430
1431 'anonymous' => "Anonymous user(s) of $wgSitename",
1432 'siteuser' => "$wgSitename user $1",
1433 'lastmodifiedby' => "This page was last modified $1 by $2.",
1434 'and' => 'and',
1435 'othercontribs' => "Based on work by $1.",
1436 'others' => 'others',
1437 'siteusers' => "$wgSitename user(s) $1",
1438 'creditspage' => 'Page credits',
1439 'nocredits' => 'There is no credits info available for this page.',
1440
1441 # Spam protection
1442
1443 'spamprotectiontitle' => 'Spam protection filter',
1444 'spamprotectiontext' => 'The page you wanted to save was blocked by the spam filter. This is probably caused by a link to an external site.',
1445 'spamprotectionmatch' => 'The following text is what triggered our spam filter: $1',
1446 'subcategorycount' => "There are $1 subcategories to this category.",
1447 'subcategorycount1' => "There is $1 subcategorie to this category.",
1448 'categoryarticlecount' => "There are $1 articles in this category.",
1449 'categoryarticlecount1' => "There is $1 article in this category.",
1450 'usenewcategorypage' => "1\n\nSet first character to \"0\" to disable the new category page layout.",
1451
1452 # Info page
1453 "infosubtitle" => "Information for page",
1454 "numedits" => "Number of edits (article): $1",
1455 "numtalkedits" => "Number of edits (discussion page): $1",
1456 "numwatchers" => "Number of watchers: $1",
1457 "numauthors" => "Number of distinct authors (article): $1",
1458 "numtalkauthors" => "Number of distinct authors (discussion page): $1",
1459
1460 # Math options
1461 'mw_math_png' => 'Always render PNG',
1462 'mw_math_simple' => 'HTML if very simple or else PNG',
1463 'mw_math_html' => 'HTML if possible or else PNG',
1464 'mw_math_source' => 'Leave it as TeX (for text browsers)',
1465 'mw_math_modern' => 'Recommended for modern browsers',
1466 'mw_math_mathml' => 'MathML if possible (experimental)',
1467
1468 # Patrolling
1469 'markaspatrolleddiff' => "Mark as patrolled",
1470 'markaspatrolledlink' => "<div class='patrollink'>[$1]</div>",
1471 'markaspatrolledtext' => "Mark this article as patrolled",
1472 'markedaspatrolled' => "Marked as patrolled",
1473 'markedaspatrolledtext' => "The selected revision has been marked as patrolled.",
1474 'rcpatroldisabled' => "Recent Changes Patrol disabled",
1475 'rcpatroldisabledtext' => "The Recent Changes Patrol feature is currently disabled.",
1476
1477 # Monobook.js: tooltips and access keys for monobook
1478 'Monobook.js' => '/* tooltips and access keys */
1479 ta = new Object();
1480 ta[\'pt-userpage\'] = new Array(\'.\',\'My user page\');
1481 ta[\'pt-anonuserpage\'] = new Array(\'.\',\'The user page for the ip you\\\'re editing as\');
1482 ta[\'pt-mytalk\'] = new Array(\'n\',\'My talk page\');
1483 ta[\'pt-anontalk\'] = new Array(\'n\',\'Discussion about edits from this ip address\');
1484 ta[\'pt-preferences\'] = new Array(\'\',\'My preferences\');
1485 ta[\'pt-watchlist\'] = new Array(\'l\',\'The list of pages you\\\'re monitoring for changes.\');
1486 ta[\'pt-mycontris\'] = new Array(\'y\',\'List of my contributions\');
1487 ta[\'pt-login\'] = new Array(\'o\',\'You are encouraged to log in, it is not mandatory however.\');
1488 ta[\'pt-anonlogin\'] = new Array(\'o\',\'You are encouraged to log in, it is not mandatory however.\');
1489 ta[\'pt-logout\'] = new Array(\'o\',\'Log out\');
1490 ta[\'ca-talk\'] = new Array(\'t\',\'Discussion about the content page\');
1491 ta[\'ca-edit\'] = new Array(\'e\',\'You can edit this page. Please use the preview button before saving.\');
1492 ta[\'ca-addsection\'] = new Array(\'+\',\'Add a comment to this discussion.\');
1493 ta[\'ca-viewsource\'] = new Array(\'e\',\'This page is protected. You can view its source.\');
1494 ta[\'ca-history\'] = new Array(\'h\',\'Past versions of this page.\');
1495 ta[\'ca-protect\'] = new Array(\'=\',\'Protect this page\');
1496 ta[\'ca-delete\'] = new Array(\'d\',\'Delete this page\');
1497 ta[\'ca-undelete\'] = new Array(\'d\',\'Restore the edits done to this page before it was deleted\');
1498 ta[\'ca-move\'] = new Array(\'m\',\'Move this page\');
1499 ta[\'ca-nomove\'] = new Array(\'\',\'You don\\\'t have the permissions to move this page\');
1500 ta[\'ca-watch\'] = new Array(\'w\',\'Add this page to your watchlist\');
1501 ta[\'ca-unwatch\'] = new Array(\'w\',\'Remove this page from your watchlist\');
1502 ta[\'search\'] = new Array(\'f\',\'Search this wiki\');
1503 ta[\'p-logo\'] = new Array(\'\',\'Main Page\');
1504 ta[\'n-mainpage\'] = new Array(\'z\',\'Visit the Main Page\');
1505 ta[\'n-portal\'] = new Array(\'\',\'About the project, what you can do, where to find things\');
1506 ta[\'n-currentevents\'] = new Array(\'\',\'Find background information on current events\');
1507 ta[\'n-recentchanges\'] = new Array(\'r\',\'The list of recent changes in the wiki.\');
1508 ta[\'n-randompage\'] = new Array(\'x\',\'Load a random page\');
1509 ta[\'n-help\'] = new Array(\'\',\'The place to find out.\');
1510 ta[\'n-sitesupport\'] = new Array(\'\',\'Support us\');
1511 ta[\'t-whatlinkshere\'] = new Array(\'j\',\'List of all wiki pages that link here\');
1512 ta[\'t-recentchangeslinked\'] = new Array(\'k\',\'Recent changes in pages linking to this page\');
1513 ta[\'feed-rss\'] = new Array(\'\',\'RSS feed for this page\');
1514 ta[\'feed-atom\'] = new Array(\'\',\'Atom feed for this page\');
1515 ta[\'t-contributions\'] = new Array(\'\',\'View the list of contributions of this user\');
1516 ta[\'t-emailuser\'] = new Array(\'\',\'Send a mail to this user\');
1517 ta[\'t-upload\'] = new Array(\'u\',\'Upload images or media files\');
1518 ta[\'t-specialpages\'] = new Array(\'q\',\'List of all special pages\');
1519 ta[\'ca-nstab-main\'] = new Array(\'c\',\'View the content page\');
1520 ta[\'ca-nstab-user\'] = new Array(\'c\',\'View the user page\');
1521 ta[\'ca-nstab-media\'] = new Array(\'c\',\'View the media page\');
1522 ta[\'ca-nstab-special\'] = new Array(\'\',\'This is a special page, you can\\\'t edit the page itself.\');
1523 ta[\'ca-nstab-wp\'] = new Array(\'a\',\'View the project page\');
1524 ta[\'ca-nstab-image\'] = new Array(\'c\',\'View the image page\');
1525 ta[\'ca-nstab-mediawiki\'] = new Array(\'c\',\'View the system message\');
1526 ta[\'ca-nstab-template\'] = new Array(\'c\',\'View the template\');
1527 ta[\'ca-nstab-help\'] = new Array(\'c\',\'View the help page\');
1528 ta[\'ca-nstab-category\'] = new Array(\'c\',\'View the category page\');
1529 '
1530
1531
1532 );
1533
1534 #--------------------------------------------------------------------------
1535 # Internationalisation code
1536 #--------------------------------------------------------------------------
1537
1538 class Language {
1539 function Language(){
1540 # Copies any missing values in the specified arrays from En to the current language
1541 $fillin = array( 'wgSysopSpecialPages', 'wgValidSpecialPages', 'wgDeveloperSpecialPages' );
1542 $name = get_class( $this );
1543 if( strpos( $name, 'language' ) == 0){
1544 $lang = ucfirst( substr( $name, 8 ) );
1545 foreach( $fillin as $arrname ){
1546 $langver = "{$arrname}{$lang}";
1547 $enver = "{$arrname}En";
1548 if( ! isset( $GLOBALS[$langver] ) || ! isset( $GLOBALS[$enver] ))
1549 continue;
1550 foreach($GLOBALS[$enver] as $spage => $text){
1551 if( ! isset( $GLOBALS[$langver][$spage] ) )
1552 $GLOBALS[$langver][$spage] = $text;
1553 }
1554 }
1555 }
1556 }
1557
1558 function getDefaultUserOptions () {
1559 global $wgDefaultUserOptionsEn ;
1560 return $wgDefaultUserOptionsEn ;
1561 }
1562
1563 function getBookstoreList () {
1564 global $wgBookstoreListEn ;
1565 return $wgBookstoreListEn ;
1566 }
1567
1568 function getNamespaces() {
1569 global $wgNamespaceNamesEn;
1570 return $wgNamespaceNamesEn;
1571 }
1572
1573 function getNsText( $index ) {
1574 global $wgNamespaceNamesEn;
1575 return $wgNamespaceNamesEn[$index];
1576 }
1577
1578 function getNsIndex( $text ) {
1579 global $wgNamespaceNamesEn;
1580
1581 foreach ( $wgNamespaceNamesEn as $i => $n ) {
1582 if ( 0 == strcasecmp( $n, $text ) ) { return $i; }
1583 }
1584 return false;
1585 }
1586
1587 function specialPage( $name ) {
1588 return $this->getNsText( Namespace::getSpecial() ) . ':' . $name;
1589 }
1590
1591 function getQuickbarSettings() {
1592 global $wgQuickbarSettingsEn;
1593 return $wgQuickbarSettingsEn;
1594 }
1595
1596 function getSkinNames() {
1597 global $wgSkinNamesEn;
1598 return $wgSkinNamesEn;
1599 }
1600
1601 function getMathNames() {
1602 global $wgMathNamesEn;
1603 return $wgMathNamesEn;
1604 }
1605
1606 function getDateFormats() {
1607 global $wgDateFormatsEn;
1608 return $wgDateFormatsEn;
1609 }
1610
1611 function getValidationTypes() {
1612 global $wgValidationTypesEn;
1613 return $wgValidationTypesEn;
1614 }
1615
1616 function getUserToggles() {
1617 global $wgUserTogglesEn;
1618 return $wgUserTogglesEn;
1619 }
1620
1621 function getUserToggle( $tog ) {
1622 $togs =& $this->getUserToggles();
1623 return wfMsg("tog-".$tog);
1624 }
1625
1626 function getLanguageNames() {
1627 global $wgLanguageNamesEn;
1628 return $wgLanguageNamesEn;
1629 }
1630
1631 function getLanguageName( $code ) {
1632 global $wgLanguageNamesEn;
1633 if ( ! array_key_exists( $code, $wgLanguageNamesEn ) ) {
1634 return "";
1635 }
1636 return $wgLanguageNamesEn[$code];
1637 }
1638
1639 function getMonthName( $key )
1640 {
1641 global $wgMonthNamesEn;
1642 return wfMsg($wgMonthNamesEn[$key-1]);
1643 }
1644
1645 /* by default we just return base form */
1646 function getMonthNameGen( $key )
1647 {
1648 return $this->getMonthName( $key );
1649 }
1650
1651 function getMonthAbbreviation( $key )
1652 {
1653 global $wgMonthAbbreviationsEn;
1654 return wfMsg(@$wgMonthAbbreviationsEn[$key-1]);
1655 }
1656
1657 function getWeekdayName( $key )
1658 {
1659 global $wgWeekdayNamesEn;
1660 return wfMsg($wgWeekdayNamesEn[$key-1]);
1661 }
1662
1663 function userAdjust( $ts )
1664 {
1665 global $wgUser, $wgLocalTZoffset;
1666
1667 $tz = $wgUser->getOption( 'timecorrection' );
1668 if ( $tz === '' ) {
1669 $hrDiff = isset( $wgLocalTZoffset ) ? $wgLocalTZoffset : 0;
1670 $minDiff = 0;
1671 } elseif ( strpos( $tz, ':' ) !== false ) {
1672 $tzArray = explode( ':', $tz );
1673 $hrDiff = intval($tzArray[0]);
1674 $minDiff = intval($hrDiff < 0 ? -$tzArray[1] : $tzArray[1]);
1675 } else {
1676 $hrDiff = intval( $tz );
1677 }
1678 if ( 0 == $hrDiff && 0 == $minDiff ) { return $ts; }
1679
1680 $t = mktime( (
1681 (int)substr( $ts, 8, 2) ) + $hrDiff, # Hours
1682 (int)substr( $ts, 10, 2 ) + $minDiff, # Minutes
1683 (int)substr( $ts, 12, 2 ), # Seconds
1684 (int)substr( $ts, 4, 2 ), # Month
1685 (int)substr( $ts, 6, 2 ), # Day
1686 (int)substr( $ts, 0, 4 ) ); #Year
1687 return date( 'YmdHis', $t );
1688 }
1689
1690 function date( $ts, $adj = false, $format = MW_DATE_USER_FORMAT )
1691 {
1692 global $wgAmericanDates, $wgUser, $wgUseDynamicDates;
1693
1694 if ( $adj ) { $ts = $this->userAdjust( $ts ); }
1695 if ( $wgUseDynamicDates ) {
1696 if ( $format == MW_DATE_USER_FORMAT ) {
1697 $datePreference = $wgUser->getOption( 'date' );
1698 } else {
1699 $options = $this->getDefaultUserOptions();
1700 $datePreference = $options['date'];
1701 }
1702 if ( $datePreference == 0 ) {
1703 $datePreference = $wgAmericanDates ? 1 : 2;
1704 }
1705 } else {
1706 $datePreference = $wgAmericanDates ? 1 : 2;
1707 }
1708
1709 $month = $this->getMonthAbbreviation( substr( $ts, 4, 2 ) );
1710 $day = $this->formatNum( 0 + substr( $ts, 6, 2 ) );
1711 $year = $this->formatNum( substr( $ts, 0, 4 ) );
1712
1713 switch( $datePreference ) {
1714 case 1: return "$month $day, $year";
1715 case 2: return "$day $month $year";
1716 default: return "$year $month $day";
1717 }
1718 }
1719
1720 function time( $ts, $adj = false, $seconds = false )
1721 {
1722 if ( $adj ) { $ts = $this->userAdjust( $ts ); }
1723
1724 $t = substr( $ts, 8, 2 ) . ':' . substr( $ts, 10, 2 );
1725 if ( $seconds ) {
1726 $t .= ':' . substr( $ts, 12, 2 );
1727 }
1728 return $this->formatNum( $t );
1729 }
1730
1731 function timeanddate( $ts, $adj = false, $format = MW_DATE_USER_FORMAT )
1732 {
1733 return $this->time( $ts, $adj ) . ', ' . $this->date( $ts, $adj, $format );
1734 }
1735
1736 function rfc1123( $ts )
1737 {
1738 return date( 'D, d M Y H:i:s T', $ts );
1739 }
1740
1741 function getValidSpecialPages()
1742 {
1743 global $wgValidSpecialPagesEn;
1744 return $wgValidSpecialPagesEn;
1745 }
1746
1747 function getSysopSpecialPages()
1748 {
1749 global $wgSysopSpecialPagesEn;
1750 return $wgSysopSpecialPagesEn;
1751 }
1752
1753 function getDeveloperSpecialPages()
1754 {
1755 global $wgDeveloperSpecialPagesEn;
1756 return $wgDeveloperSpecialPagesEn;
1757 }
1758
1759 function getMessage( $key )
1760 {
1761 global $wgAllMessagesEn;
1762 return @$wgAllMessagesEn[$key];
1763 }
1764
1765 function getAllMessages()
1766 {
1767 global $wgAllMessagesEn;
1768 return $wgAllMessagesEn;
1769 }
1770
1771 function iconv( $in, $out, $string ) {
1772 # For most languages, this is a wrapper for iconv
1773 return iconv( $in, $out, $string );
1774 }
1775
1776 function ucfirst( $string ) {
1777 # For most languages, this is a wrapper for ucfirst()
1778 return ucfirst( $string );
1779 }
1780
1781 function lcfirst( $s ) {
1782 return strtolower( $s{0} ). substr( $s, 1 );
1783 }
1784
1785 function checkTitleEncoding( $s ) {
1786 global $wgInputEncoding;
1787
1788 # Check for UTF-8 URLs; Internet Explorer produces these if you
1789 # type non-ASCII chars in the URL bar or follow unescaped links.
1790 $ishigh = preg_match( '/[\x80-\xff]/', $s);
1791 $isutf = ($ishigh ? preg_match( '/^([\x00-\x7f]|[\xc0-\xdf][\x80-\xbf]|' .
1792 '[\xe0-\xef][\x80-\xbf]{2}|[\xf0-\xf7][\x80-\xbf]{3})+$/', $s ) : true );
1793
1794 if( ($wgInputEncoding != 'utf-8') and $ishigh and $isutf )
1795 return @iconv( 'UTF-8', $wgInputEncoding, $s );
1796
1797 if( ($wgInputEncoding == 'utf-8') and $ishigh and !$isutf )
1798 return utf8_encode( $s );
1799
1800 # Other languages can safely leave this function, or replace
1801 # it with one to detect and convert another legacy encoding.
1802 return $s;
1803 }
1804
1805 function stripForSearch( $in ) {
1806 # Some languages have special punctuation to strip out
1807 # or characters which need to be converted for MySQL's
1808 # indexing to grok it correctly. Make such changes here.
1809 return strtolower( $in );
1810 }
1811
1812 function firstChar( $s ) {
1813 # Get the first character of a string. In ASCII, return
1814 # first byte of the string. UTF8 and others have to
1815 # overload this.
1816 return $s[0];
1817 }
1818
1819 function setAltEncoding() {
1820 # Some languages may have an alternate char encoding option
1821 # (Esperanto X-coding, Japanese furigana conversion, etc)
1822 # If 'altencoding' is checked in user prefs, this gives a
1823 # chance to swap out the default encoding settings.
1824 #global $wgInputEncoding, $wgOutputEncoding, $wgEditEncoding;
1825 }
1826
1827 function recodeForEdit( $s ) {
1828 # For some languages we'll want to explicitly specify
1829 # which characters make it into the edit box raw
1830 # or are converted in some way or another.
1831 # Note that if wgOutputEncoding is different from
1832 # wgInputEncoding, this text will be further converted
1833 # to wgOutputEncoding.
1834 global $wgInputEncoding, $wgEditEncoding;
1835 if( $wgEditEncoding == '' or
1836 $wgEditEncoding == $wgInputEncoding ) {
1837 return $s;
1838 } else {
1839 return $this->iconv( $wgInputEncoding, $wgEditEncoding, $s );
1840 }
1841 }
1842
1843 function recodeInput( $s ) {
1844 # Take the previous into account.
1845 global $wgInputEncoding, $wgOutputEncoding, $wgEditEncoding;
1846 if($wgEditEncoding != "") {
1847 $enc = $wgEditEncoding;
1848 } else {
1849 $enc = $wgOutputEncoding;
1850 }
1851 if( $enc == $wgInputEncoding ) {
1852 return $s;
1853 } else {
1854 return $this->iconv( $enc, $wgInputEncoding, $s );
1855 }
1856 }
1857
1858 # For right-to-left language support
1859 function isRTL() { return false; }
1860
1861 # To allow "foo[[bar]]" to extend the link over the whole word "foobar"
1862 function linkPrefixExtension() { return false; }
1863
1864
1865 function &getMagicWords()
1866 {
1867 global $wgMagicWordsEn;
1868 return $wgMagicWordsEn;
1869 }
1870
1871 # Fill a MagicWord object with data from here
1872 function getMagic( &$mw )
1873 {
1874 $raw =& $this->getMagicWords();
1875 if( !isset( $raw[$mw->mId] ) ) {
1876 # Fall back to English if local list is incomplete
1877 $raw =& Language::getMagicWords();
1878 }
1879 $rawEntry = $raw[$mw->mId];
1880 $mw->mCaseSensitive = $rawEntry[0];
1881 $mw->mSynonyms = array_slice( $rawEntry, 1 );
1882 }
1883
1884 # Italic is unsuitable for some languages
1885 function emphasize( $text )
1886 {
1887 return '<em>'.$text.'</em>';
1888 }
1889
1890
1891 # Normally we use the plain ASCII digits. Some languages such as Arabic will
1892 # want to output numbers using script-appropriate characters: override this
1893 # function with a translator. See LanguageAr.php for an example.
1894 function formatNum( $number ) {
1895 return $number;
1896 }
1897
1898 function listToText( $l ) {
1899 $s = '';
1900 $m = count($l) - 1;
1901 for ($i = $m; $i >= 0; $i--) {
1902 if ($i == $m) {
1903 $s = $l[$i];
1904 } else if ($i == $m - 1) {
1905 $s = $l[$i] . ' ' . $this->getMessage('and') . ' ' . $s;
1906 } else {
1907 $s = $l[$i] . ', ' . $s;
1908 }
1909 }
1910 return $s;
1911 }
1912
1913 # Crop a string from the beginning or end to a certain number of bytes.
1914 # (Bytes are used because our storage has limited byte lengths for some
1915 # columns in the database.) Multibyte charsets will need to make sure that
1916 # only whole characters are included!
1917 #
1918 # $length does not include the optional ellipsis.
1919 # If $length is negative, snip from the beginning
1920 function truncate( $string, $length, $ellipsis = '' ) {
1921 if( $length == 0 ) {
1922 return $ellipsis;
1923 }
1924 if ( strlen( $string ) <= abs( $length ) ) {
1925 return $string;
1926 }
1927 if( $length > 0 ) {
1928 $string = substr( $string, 0, $length );
1929 return $string . $ellipsis;
1930 } else {
1931 $string = substr( $string, $length );
1932 return $ellipsis . $string;
1933 }
1934 }
1935 }
1936
1937 # This should fail gracefully if there's not a localization available
1938 @include_once( 'Language' . ucfirst( $wgLanguageCode ) . '.php' );
1939
1940 }
1941 ?>